home *** CD-ROM | disk | FTP | other *** search
- /*
- CSS Layout for Manage Recordings page.
- */
-
- #DIV_CONTENTS {
- /*
- This is the divider line between the header and the content section.
- Specifying any values here will override the default values found in styles.css
- */
- }
- #RECORDINGS_HEADER {
- /*
- Positioning for the fixed row containing the header information for the programme information.
- */
- position:absolute;
- width:100%;
- height:25px;
-
- left:0;
-
- background:#ffffff url("../graphics/main_bg.jpg") repeat-x left top;
- color:#000000;
- overflow:hidden;
- }
- .forcedScrollbar {
- /*
- This is a surrounding div which forces the header to display a scrollbar when the content area becomes full.
- Height should be set to more than the height of #RECORDING_HEADER (100 pixels more should be sufficient)
- With proper z-indexing, doing this ensures a vertical scrollbar will appear. The extra content is simply hidden behind the
- regular content area which has a higher z-index.
- */
- height:125px;
- overflow:scroll; /* force scrolling */
- background-color:#dcdcdc;
-
- display:inline-block;
- position:relative;
-
- width:100%;
-
- border-width:0;
- padding:0;
- }
- #FILTERS {
- /*
- Contains the filters for the different types of programmes to show.
- */
- width:100%;
- top:95px;
- position:absolute;
- right:0;
- float:right;
-
- padding: 11px 0px 0px 0px;
-
- z-index:8;
- }
- #recordingFilter {
- /*
- Styling for the individual SELECT areas for the filter
- */
- float:right;
- display: block;
- margin-right:4px;
- color:#000000;
- border: 1px solid #556b2f;
- background: #CCCCCC;
- font-size: 1em;
- }
- #treeView {
- /*
- Contains the priamry sort information for TreeView.
- */
- float:left;
- margin-left: 5px;
- display: block;
- color: #000000;
- padding-left: 5px;
- padding-right: 5px;
- border: 1px solid #556b2f;
- background: #CCCCCC;
- font-size: 1em;
- }
- #SORT_HEADER {
- /*
- Contains the sort information for TreeView.
- */
- position:absolute;
- top:131px;
- left:0;
- color: #000000;
- padding: 2px 0px 0px 0px;
- }
- #sortResults {
- /*
- Contains the priamry sort information for TreeView.
- */
- float:left;
- margin-left: 4px;
- display: block;
- margin-right:4px;
- padding-left: 5px;
- padding-right: 5px;
- border: 1px solid #556b2f;
- background: #CCCCCC;
- font-size: 1em;
- }
- #sortResults2 {
- /*
- Contains the secondary sort information for TreeView.
- */
- float:left;
- display: block;
- padding-left: 5px;
- padding-right: 5px;
- border: 1px solid #556b2f;
- background: #CCCCCC;
- font-size: 1em;
- }
-
- /*
- *********************************************************************************************************************
- Absolute Positioning and Height
-
- These values are consolidated into one place to make it easier to change size attributes seeing as changing
- any one of these values can affect all the others. Main declarations for these values appear earlier in the style sheet
- and then actual positioning values here.
-
- These values are the key to maintaining proper size, positioning and scrolling behavior.
- *********************************************************************************************************************
- */
-
- BODY {
- /*
- In order to maintain proper positioning and fixed scrolling, these values must be specified.
- In effect, this absolutely positions the main body within the borders of the scrolling area.
- Top value is the same as the top value of #RECORDINGS.
- Bottom value would be the height of the footer area minus the height of the divider for the footer.
- */
- margin-top:158px;
- margin-bottom:49px;
- }
- #HEADER {
- /*
- The height of the entire header area from page top to the bottom of the navigation tabs.
- The actual nav tabs are floated within this div.
- */
- height:92px;
- }
- #NAV_ROW {
- /*
- The is the row containing the navigation tabs.
- It is typically positioned at the bottom of the header
- */
- top:62px;
- }
- #NAV_ROW, #NAV_ROW A {
- /* determines the height of the main navigation tabs */
- height:32px;
- }
- #DIV_DATELINE {
- /*
- This is the divider line between the main header above and the section containing the server time
- */
- top:91px;
- }
- #DATELINE {
- /*
- This is the section containing the server time, date, etc.
- */
- top:92px;
- }
- #REMINDER_DIV, #FILTERS, #DATELINE {
- /* Height of these individual elements would normally be the same as #DATELINE */
- /* Contains the Genre, date, time and GO button.*/
- height:40px;
- }
-
- #RECORDINGS_HEADER {
- /*
- This section contains the main, non-scrolling timeline at the top of the content section.
- */
- top:133px;
- height:25px;
- }
- #DIV_CONTENTS {
- /*
- This is A divider line between any fixed top section within the content area and the content itself.
- This is typically used in the guide page to separate the showtime header from the content.
- In other pages which don't need this functionality it can simply be hidden.
- */
- top:158px;
- }
- #CONTENTS {
- /*
- This is the main content area.
- To ensure proper scrolling behavior it MUST be absolutely positioned.
- Both top and bottom values must be specified.
- Top value would be the height of all foxed content above it.
- Bottom value would be the height of the footer area minus the height of the divider for the footer.
- Values must be tweaked due to differences in how IE and Firefox interpret the box model.
- */
- top:158px;
- bottom:47px;
- overflow-x:hidden;
- }
- #treeControl {
- /*
- This is the main content area.
- To ensure proper scrolling behavior it MUST be absolutely positioned.
- Both top and bottom values must be specified.
- Top value would be the height of all foxed content above it.
- Bottom value would be the height of the footer area minus the height of the divider for the footer.
- Values must be tweaked due to differences in how IE and Firefox interpret the box model.
- */
- position: absolute;
- top:158px;
- bottom:47px;
- overflow-x:hidden;
- overflow-y:auto;
- width:100%;
- }
- #DIV_FOOTER {
- /*
- The divider between the main content area and the footer.
- It must be absolutely positioned.
- The bottom value would typically be the same as the height of the footer
- */
- bottom:50px;
- }
- #FOOTER {
- /*
- Fixed area at the bottom of every page. This must be absolutely posiitioned for proper scrolling
- Certain content will always be contained in this section such as standard GB-PVR documentation links and credits,
- but it contains and left and right section which can be customized on each page.
-
- If the size of the footer changes make sure to adjust the content area's bottom value as well as the
- divider section for the footer.
- */
- height:50px;
- }